home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 December
/
2004-12 CHIP.iso
/
CHIP
/
Porady
/
Srodowisko PHP-MySQL
/
WAMP5 1.3
/
wamp5_1.3.exe
/
{app}
/
www
/
sqlitemanager
/
index.php
< prev
next >
Wrap
PHP Script
|
2004-09-24
|
901b
|
29 lines
<?php
/**
* Web based SQLite management
* @package SQLiteManager
* @author FrΘdΘric HENNINOT
* @version $Id: index.php,v 1.11 2004/09/05 17:50:40 freddy78 Exp $ $Revision: 1.11 $
*/
session_start();
include_once "./include/defined.inc.php";
include_once INCLUDE_LIB.'config.inc.php';
sqlite_close($db);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<title>SQLiteManager</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" >
</head>
<frameset cols="<?php echo $leftFrameWidth ?>,*">
<frame src="left.php?<?php echo arrayToGet($_GET) ?>" name=left scrolling=auto>
<frame src="main.php?<?php echo arrayToGet($_GET) ?>" name=main scrolling=auto>
</frameset>
<noframes>
<script>if(!document.frames) window.location='main.php?noframe';</script>
</noframes>
</html>